{% extends "base.html" %} {% block title %}Create Prescription - QuickCare{% endblock %} {% block content %}

Create Medical Prescription

Appointment ID: #{{ appointment.id }} | Patient: {{ appointment.patient.user.name }} | Date: {{ appointment.appointment_date.strftime('%d %b %Y') }}

Patient Information

{{ appointment.patient.user.name }}

{% if appointment.patient.user.date_of_birth %}{{ ((now() - appointment.patient.user.date_of_birth).days / 365.25) | int }} Years{% else %}N/A{% endif %}

{{ appointment.patient.user.gender | title if appointment.patient.user.gender else 'N/A' }}

{{ appointment.patient.user.phone | format_phone }}

Vital Signs
Clinical Assessment
Primary diagnosis or medical condition
Rx - Medicines
M-A-N
Laboratory Tests
Advice & Follow-up
{% endblock %}